home *** CD-ROM | disk | FTP | other *** search
/ Mac Mania 6 / MacMania 6.toast / / Tools&Utilities / EnterAct Stuff / Drag_on Modules / hAWK programs / $EchoFullPathNames < prev    next >
Text File  |  1991-11-30  |  284b  |  10 lines

  1. # $EchoFullPathNames - produces full path names of input files,
  2. #and perhaps other things.
  3. #Typically use the "MFS selected files" input option
  4. #with "Show stdout" and "Select all of stdout" selected
  5.  
  6. BEGIN {
  7.     for (i = 1; i < ARGC; ++i)#note ARGV[0] is just "hAWK"
  8.         print ARGV[i]
  9.     }
  10.